home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
dskut
/
boot.zip
/
BOOTMAKE.BAT
< prev
next >
Wrap
DOS Batch File
|
1986-01-09
|
399b
|
16 lines
rem This batch file will
rem 1) assemble boot.asm
rem 2) link it into boot.exe
rem 3) convert it into boot.com
rem 4) copy it to the boot record
rem in a diskette in drive A
rem (be prepared for that)
pause Ready?
masm boot,boot.obj,nul,nul
link boot,boot,con;
exe2bin boot.exe boot.com
debug boot.com <boot.dbg
del boot.obj
del boot.exe
del boot.com